/*---------------------------------------
  ENHANCED CUSTOM PROPERTIES - BAŞLANGIÇ             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #19b2c0;
  --secondary-color: #19b2c0;
  --section-bg-color: #f8fafc;
  --dark-color: #1a1a1a;
  --navbar-bg-color: #273053;
  --p-color: #64748b;
  --highlight-icon-color: #ff0100;
  --accent-color: #5ed0e3;
  --teal-dark: #1798bb;
  --teal-light: #a2eefa;
  
  /* Enhanced Professional Colors */
  --professional-blue: #0f172a;
  --professional-slate: #334155;
  --professional-gray: #475569;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #19b2c0 0%, #19b2c0 100%);
  --gradient-accent: linear-gradient(45deg, #ffd700, #ff6b35);
  
  /* Enhanced Typography */
  --body-font-family: "DM Sans", sans-serif;
  --h1-font-size: 3.5rem;
  --h2-font-size: 2.75rem;
  --h3-font-size: 2rem;
  --h4-font-size: 1.5rem;
  --h5-font-size: 1.25rem;
  --h6-font-size: 1.125rem;
  --p-font-size: 1rem;
  --small-font-size: 0.875rem;
  --copyright-text-font-size: 16px;
  
  /* Enhanced Spacing */
  --section-padding: 5rem 0;
  --card-padding: 2rem;
  --border-radius: 1rem;
  --border-radius-lg: 1.5rem;
  --border-radius-xl: 2rem;
  
  /* Enhanced Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 15px 50px rgba(0, 0, 0, 0.15);
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--white-color);
  font-family: var(--body-font-family);
  line-height: 1.6;
  color: var(--professional-slate);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/*---------------------------------------
  ENHANCED CUSTOM PROPERTIES - BİTİŞ             
-----------------------------------------*/

/*---------------------------------------
  ENHANCED TYPOGRAPHY - BAŞLANGIÇ               
-----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-extrabold);
  letter-spacing: -0.03em;
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-semibold);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  line-height: 1.7;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-large {
  font-size: 1.125rem;
  font-weight: var(--font-weight-medium);
}

.text-small {
  font-size: var(--small-font-size);
  color: var(--professional-gray);
}
/*---------------------------------------
  ENHANCED TYPOGRAPHY - BİTİŞ               
-----------------------------------------*/

/*---------------------------------------
  NON-NAVBAR CUSTOM BUTTONS - BAŞLANGIÇ               
-----------------------------------------*/
.custom-border-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.custom-border-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(25, 178, 192, 0.3);
}
/*---------------------------------------
  NON-NAVBAR CUSTOM BUTTONS - BİTİŞ               
-----------------------------------------*/

/*---------------------------------------
  ENHANCED HERO SECTION - BAŞLANGIÇ              
-----------------------------------------*/
.enhanced-hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.enhanced-hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.enhanced-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.professional-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95) 0%,
    rgba(30, 41, 59, 0.9) 50%,
    rgba(51, 65, 85, 0.85) 100%
  );
  z-index: 2;
}

.geometric-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.pattern-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(25, 178, 192, 0.08);
  backdrop-filter: blur(20px);
  animation: float-geometric 15s infinite ease-in-out;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  top: 70%;
  right: 10%;
  animation-delay: 5s;
}

.circle-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 20%;
  animation-delay: 10s;
}

.pattern-hexagon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(25, 178, 192, 0.06);
  transform: rotate(45deg);
  animation: rotate-geometric 20s infinite linear;
}

.hex-1 {
  top: 20%;
  right: 5%;
  animation-delay: 2s;
}

.hex-2 {
  bottom: 30%;
  left: 8%;
  animation-delay: 8s;
}

.pattern-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(25, 178, 192, 0.3), transparent);
  animation: slide-line 12s infinite ease-in-out;
}

.line-1 {
  width: 300px;
  top: 30%;
  left: -150px;
  animation-delay: 3s;
}

.line-2 {
  width: 250px;
  bottom: 40%;
  right: -125px;
  animation-delay: 7s;
}

.enhanced-hero-content {
  position: relative;
  z-index: 10;
  padding: 1rem 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text-content {
  color: white;
  position: relative;
}

.hero-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer-badge 3s infinite;
}

.hero-premium-badge i {
  color: #10b981;
  font-size: 1.1rem;
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-extrabold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.title-line-1 {
  display: block;
  font-size: 2.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
}

.title-line-2 {
  display: block;
  font-size: 3.5rem;
}

.gradient-text-enhanced {
  background: linear-gradient(45deg, #ffd700, #ff6b35, #19b2c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift-enhanced 4s ease-in-out infinite;
}

.highlight-text {
  color: white;
  position: relative;
  z-index: 1;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #ffd700, #ff6b35);
  z-index: -1;
  opacity: 0.3;
  border-radius: 4px;
}

.hero-description-enhanced {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 95%;
}

.hero-value-props {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

.value-prop:hover {
  background: rgba(25, 178, 192, 0.15);
  border-color: rgba(25, 178, 192, 0.3);
  transform: translateY(-2px);
}

.value-prop i {
  color: #10b981;
  font-size: 1.1rem;
}

.hero-buttons-enhanced {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-primary-btn-enhanced, .hero-secondary-btn-enhanced {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-primary-btn-enhanced {
  background: linear-gradient(45deg, #ffd700, #ff6b35);
  color: #1a1a1a;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer-btn 2s infinite;
}

.hero-primary-btn-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
  color: #1a1a1a;
}

.hero-secondary-btn-enhanced {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-secondary-btn-enhanced:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: white;
}

.hero-trust-indicators {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: #ffd700;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced Visual Content */
.hero-visual-content-enhanced {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.enhanced-image-container {
  position: relative;
  max-width: 600px;
  width: 100%;
  z-index: 5;
}

.professional-glow {
  position: absolute;
  top: -2rem;
  left: -2rem;
  right: -2rem;
  bottom: -2rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  opacity: 0.2;
  border-radius: 2rem;
  filter: blur(30px);
  animation: glow-pulse-enhanced 4s ease-in-out infinite;
}

.hero-main-image-enhanced {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.floating-card-enhanced {
  position: absolute;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
  transition: all 0.3s ease;
  animation: float-card 6s ease-in-out infinite;
}

.floating-card-enhanced:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-ai {
  top: 10%;
  right: -2rem;
  animation-delay: 0s;
}

.card-mentor {
  top: 50%;
  left: -3rem;
  animation-delay: 2s;
}

.card-progress {
  bottom: 15%;
  right: -2rem;
  animation-delay: 4s;
}

.card-icon-enhanced {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.ai-icon {
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.mentor-icon {
  background: linear-gradient(45deg, #19b2c0, #19b2c0);
}

.progress-icon {
  background: linear-gradient(45deg, #ffd700, #ff6b35);
}

.card-content-enhanced {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.card-title {
  font-size: 0.9rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.card-subtitle {
  font-size: 0.75rem;
  color: var(--professional-gray);
  margin-bottom: 0.5rem;
}

.card-status {
  font-size: 0.7rem;
  font-weight: var(--font-weight-semibold);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.card-status.online {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.card-status.scheduled {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.card-progress-bar {
  width: 80px;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #19b2c0);
  border-radius: 2px;
  transition: width 1s ease-in-out;
}

.scroll-indicator-enhanced {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  z-index: 10;
}

.scroll-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: var(--font-weight-medium);
}

.scroll-arrow-animated {
  font-size: 1.5rem;
  animation: bounce-enhanced 2s infinite;
}

/* Enhanced Animations */
@keyframes float-geometric {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes rotate-geometric {
  0% { transform: rotate(45deg); }
  100% { transform: rotate(405deg); }
}

@keyframes slide-line {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

@keyframes shimmer-badge {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes shimmer-btn {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes gradient-shift-enhanced {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(45deg); }
}

@keyframes glow-pulse-enhanced {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.05); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes bounce-enhanced {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Responsive Design */
@media (max-width: 991px) {
  .enhanced-hero {
    height: 90vh;
    max-height: 90vh;
  }
  
  .hero-main-title {
    font-size: 2.75rem;
  }
  
  .title-line-1 {
    font-size: 2rem;
  }
  
  .title-line-2 {
    font-size: 2.75rem;
  }
  
  .hero-value-props {
    gap: 1rem;
  }
  
  .floating-card-enhanced {
    display: none;
  }
  
  .pattern-circle, .pattern-hexagon, .pattern-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .enhanced-hero {
    height: auto;
    min-height: 100vh;
    max-height: none;
  }
  
  .enhanced-hero-content {
    padding: 2rem 0;
  }
  
  .enhanced-hero-content .row {
    flex-direction: column;
  }
  
  .enhanced-hero-content .col-lg-6:first-child {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .enhanced-hero-content .col-lg-6:last-child {
    order: 2;
    position: relative;
    z-index: 10;
  }
  
  .hero-main-title {
    font-size: 2.25rem;
  }
  
  .title-line-1 {
    font-size: 1.75rem;
  }
  
  .title-line-2 {
    font-size: 2.25rem;
  }
  
  .hero-description-enhanced {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .mobile-visual-content {
    margin: 1.5rem 0;
    position: relative;
    z-index: 10;
  }
  
  .mobile-visual-content .hero-visual-content-enhanced {
    margin: 0;
    padding: 0;
  }
  
  .mobile-visual-content .hero-main-image-enhanced {
    max-height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .mobile-visual-content .professional-glow {
    top: -1rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
    border-radius: 1.5rem;
  }
  
  .mobile-visual-content .floating-card-enhanced {
    position: static;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    animation: none;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .mobile-visual-content .card-ai {
    position: static;
    top: auto;
    left: auto;
  }
  
  .mobile-visual-content .card-mentor {
    position: static;
    top: auto;
    right: auto;
  }
  
  .mobile-visual-content .card-progress {
    position: static;
    bottom: auto;
    left: auto;
    transform: none;
    margin-bottom: 0;
  }

  .hero-value-props {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 5;
  }
  
  .hero-buttons-enhanced {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-primary-btn-enhanced, .hero-secondary-btn-enhanced {
    justify-content: center;
    width: 100%;
  }
  
  .hero-trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Mobile Image Optimization */
  .hero-visual-content-enhanced {
    margin-top: 2rem;
    padding: 0 1rem;
  }
  
  .enhanced-image-container {
    max-width: 100%;
    width: 100%;
  }
  
  .hero-main-image-enhanced {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    object-position: center;
  }
  
  .professional-glow {
    top: -1rem;
    left: -1rem;
    right: -1rem;
    bottom: -1rem;
  }
  
  .scroll-indicator-enhanced {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .enhanced-hero-content {
    padding: 1.5rem 0;
  }
  
  .enhanced-hero-content .col-lg-6:first-child {
    margin-bottom: 1.5rem;
  }
  
  .hero-main-title {
    font-size: 2rem;
  }
  
  .title-line-1 {
    font-size: 1.5rem;
  }
  
  .title-line-2 {
    font-size: 2rem;
  }
  
  .hero-description-enhanced {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-value-props {
    margin-bottom: 1.25rem;
  }
  
  .hero-buttons-enhanced {
    margin-bottom: 1.25rem;
  }
  
  .hero-visual-content-enhanced {
    margin-top: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .hero-main-image-enhanced {
    max-height: 200px;
    border-radius: 1rem;
  }
  
  .professional-glow {
    top: -0.5rem;
    left: -0.5rem;
    right: -0.5rem;
    bottom: -0.5rem;
    border-radius: 1.5rem;
  }
}
/*---------------------------------------
  ENHANCED HERO SECTION - BİTİŞ              
-----------------------------------------*/

/*---------------------------------------
  ENHANCED SECTIONS - BAŞLANGIÇ              
-----------------------------------------*/
.section-header-enhanced {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(25, 178, 192, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(25, 178, 192, 0.2);
}

.section-badge.ai-badge {
  background: rgba(103, 126, 234, 0.1);
  color: #667eea;
  border-color: rgba(103, 126, 234, 0.2);
}

.section-title-enhanced {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.title-highlight {
  display: block;
  font-size: 1.5rem;
  color: var(--professional-gray);
  font-weight: var(--font-weight-medium);
  margin-top: 0.5rem;
}

.section-description-enhanced {
  font-size: 1.125rem;
  color: var(--p-color);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Enhanced Mentor Section */
.mentor-section {
  padding: var(--section-padding);
  background: var(--section-bg-color);
  position: relative;
  overflow: hidden;
}

.mentor-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(25, 178, 192, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(25, 178, 192, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.mentor-section .container {
  position: relative;
  z-index: 2;
}

.mentor-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.mentor-feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(71, 85, 105, 0.08);
  position: relative;
  overflow: hidden;
}

.mentor-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-secondary);
  transition: width 0.3s ease;
}

.mentor-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.mentor-feature-card:hover::before {
  width: 8px;
}

.feature-icon-enhanced {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.feature-icon-enhanced i {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Icon fallback and emoji support */
.feature-icon-enhanced i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}

/* If Bootstrap Icons don't load, show emoji fallback */
.feature-icon-enhanced i:empty::before {
  font-family: 'Segoe UI Emoji', 'Apple Color Emoji', sans-serif;
  font-size: 1.75rem;
}

.feature-icon-enhanced .bi-person-check-fill:empty::before {
  content: "👤";
}

.feature-icon-enhanced .bi-graph-up-arrow:empty::before {
  content: "📈";
}

.feature-icon-enhanced .bi-bullseye:empty::before {
  content: "🎯";
}

.icon-bg-pattern {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 10px 10px;
  animation: pattern-move 10s linear infinite;
}

.feature-content-enhanced h3 {
  font-size: 1.375rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.feature-content-enhanced p {
  color: var(--p-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.08);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.feature-highlight i {
  color: var(--success-color);
  font-size: 0.875rem;
}

.feature-highlight span {
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  color: var(--success-color);
}

.mentor-stats-section {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(71, 85, 105, 0.08);
}

.stats-container-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item-enhanced {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.stat-icon-enhanced {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stat-content-enhanced {
  display: flex;
  flex-direction: column;
}

.stat-number-enhanced {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
  line-height: 1;
}

.stat-label-enhanced {
  font-size: 0.875rem;
  color: var(--professional-gray);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Enhanced AI Section */
.ai-section {
  padding: var(--section-padding);
  background: white;
  position: relative;
}

.ai-features-showcase {
  margin-bottom: 4rem;
}

.ai-feature-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 3rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
}

.ai-demo-container {
  position: relative;
}

.ai-chat-interface {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.1);
}

.chat-header {
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: var(--font-weight-semibold);
  font-size: 0.9rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse-dot 2s infinite;
}

.response-time {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  opacity: 0.9;
}

.chat-messages {
  padding: 1.5rem;
  max-height: 400px;
  overflow-y: auto;
  background: #fafafa;
}

.message {
  margin-bottom: 1.5rem;
}

.user-message {
  text-align: right;
}

.user-message .message-content {
  display: inline-block;
  background: var(--gradient-secondary);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: 1.25rem 1.25rem 0.25rem 1.25rem;
  max-width: 80%;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ai-message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.ai-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--primary-color);
  padding: 3px;
}

.ai-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.ai-message .message-content {
  background: white;
  color: var(--dark-color);
  padding: 1rem 1.25rem;
  border-radius: 1.25rem 1.25rem 1.25rem 0.25rem;
  max-width: 85%;
  font-size: 0.9rem;
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(71, 85, 105, 0.08);
}

.message-time {
  font-size: 0.7rem;
  color: var(--professional-gray);
  margin-top: 0.5rem;
  opacity: 0.7;
}

.chat-input {
  padding: 1rem 1.5rem;
  background: white;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.chat-input input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  background: #f9fafb;
}

.send-btn {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gradient-secondary);
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.send-btn:hover {
  transform: scale(1.1);
}

.ai-feature-content h3 {
  font-size: 1.75rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.ai-capabilities {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-capabilities li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: rgba(25, 178, 192, 0.05);
  border-radius: 0.75rem;
  border: 1px solid rgba(25, 178, 192, 0.1);
}

.ai-capabilities i {
  color: var(--success-color);
  font-size: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.ai-capabilities span {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--p-color);
}

.ai-access-methods {
  text-align: center;
}

.access-title {
  font-size: 1.75rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.access-method {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(71, 85, 105, 0.08);
  transition: all 0.3s ease;
}

.access-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.access-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

.access-content h4 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 0.75rem;
}

.access-content p {
  color: var(--p-color);
  font-size: 0.9rem;
  margin: 0;
}

/* Success Journey Section */
.success-journey-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.success-journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 75%, rgba(25, 178, 192, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(103, 126, 234, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.journey-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.journey-header h2 {
  font-size: 2.75rem;
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: 1rem;
}

.journey-subtitle {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-weight-medium);
  margin-bottom: 3rem;
}

.journey-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.journey-quote {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  margin: 2rem 0;
  position: relative;
}

.quote-mark {
  font-size: 4rem;
  color: #ffd700;
  font-weight: var(--font-weight-bold);
  line-height: 1;
  opacity: 0.7;
}

.quote-mark.closing {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.quote-question {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  color: #ffd700;
  font-style: italic;
  margin: 1rem 0;
}

.journey-answer {
  margin: 2rem 0;
}

.journey-cta-text {
  font-size: 1.25rem;
  color: white;
  font-weight: var(--font-weight-semibold);
}

.journey-cta {
  margin-top: 2rem;
}

.journey-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(45deg, #ffd700, #ff6b35);
  color: #1a1a1a;
  padding: 1.5rem 3rem;
  border-radius: var(--border-radius-lg);
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.4);
  margin-bottom: 1.5rem;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer-journey 3s infinite;
}

.journey-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
  color: #1a1a1a;
}

.cta-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Enhanced Animations */
@keyframes pattern-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10px, 10px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes shimmer-journey {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.typing-animation {
  animation: typing 2s steps(40, end);
}

@keyframes typing {
  from { max-width: 0; overflow: hidden; }
  to { max-width: 100%; }
}

.animate-in {
  animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .mentor-features-grid {
    grid-template-columns: 1fr;
  }
  
  .ai-feature-large {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .stats-container-enhanced {
    grid-template-columns: 1fr;
  }
  
  .journey-header h2 {
    font-size: 2.25rem;
  }
  
  .section-title-enhanced {
    font-size: 2rem;
  }
  
  .cta-buttons-enhanced {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary-btn, .cta-secondary-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mentor-feature-card {
    padding: 2rem;
  }
  
  .ai-feature-large {
    padding: 2rem;
  }
  
  .journey-quote {
    padding: 2rem;
  }
  
  .cta-content-enhanced {
    padding: 3rem 2rem;
  }
  
  .journey-header h2 {
    font-size: 2rem;
  }
  
  .journey-subtitle {
    font-size: 1.125rem;
  }
  
  .access-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .mentor-feature-card {
    padding: 1.5rem;
  }
  
  .ai-feature-large {
    padding: 1.5rem;
  }
  
  .journey-quote {
    padding: 1.5rem;
  }
  
  .cta-content-enhanced {
    padding: 2rem 1.5rem;
  }
  
  .quote-mark {
    font-size: 3rem;
  }
  
  .journey-cta-btn {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }
}
/*---------------------------------------
  ENHANCED SECTIONS - BİTİŞ              
-----------------------------------------*/


/* Global Smooth Scrolling */
html {
  scroll-behavior: smooth;
}


