/* ==================================================
*  RENICAMES KURUMSAL FONT STANDARTLARI
*  ================================================== */

/* Global font standardization for corporate consistency */
* {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif !important;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #2c3e50;
  background: whitesmoke;
  padding-top: 55px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 600;
  line-height: 1.4;
  color: #2c3e50;
}

p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 400;
  line-height: 1.7;
  color: #2c3e50;
}

a, span, div {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif !important;
}

/* Input and form elements */
input, textarea, select, button {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif !important;
}

/* ==================================================
*  KURUMSAL RENK PALETLERI VE DEGISKENLER
*  ================================================== */

/* CSS Variables for Easy Color Management */
:root {
  --primary-color: #3498db;
  --secondary-color: #2980b9;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --background-light: #f8f9fa;
  --background-white: #ffffff;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --border-color: rgba(0, 0, 0, 0.05);
  --success-color: #1e3a8a;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* GÜÇLÜ PARALLAX EFEKTLERİ - PARALLAX PARALLAX PARALLAX! */
.parallax-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

/* Content sections with glass effect */
.content-section {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  padding: 80px 20px;
  margin: 50px 0;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.3);
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

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

.parallax-content h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.parallax-content p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-down:hover {
  color: #2c98f0;
  transform: translateX(-50%) scale(1.2);
}

/* Enhanced scroll indicator */
.scroll-down::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  opacity: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 1;
  }
  70% {
    transform: translateX(-50%) scale(1.5);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-30px) translateX(-50%);
  }
  60% {
    transform: translateY(-15px) translateX(-50%);
  }
}

.section-transition {
  height: 20px;
  background: linear-gradient(to bottom, transparent, #fff);
  position: relative;
  z-index: 2;
  margin-top: -20px;
}

.content-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  z-index: 2;
}

/* Removed flash animation - using simple transitions for corporate look */

/* Modern scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1);
}

.rotate-in {
  opacity: 0;
  transform: rotateY(20deg) translateZ(-20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  perspective: 1000px;
}

.rotate-in.visible {
  opacity: 1;
  transform: rotateY(0) translateZ(0);
}

/* Staggered animation delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Parallax section reveal effect */
.reveal-section {
  position: relative;
  overflow: hidden;
}

.reveal-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2c98f0;
  transform: translateX(100%);
  z-index: 2;
  transition: transform 0.8s ease 0.2s;
}

.reveal-section.visible::after {
  transform: translateX(200%);
}

/* 3D tilt effect for cards */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  will-change: transform;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Floating effect for elements - REMOVED */

/* Enhanced background parallax */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Add a fancy border to important elements */
.fancy-border {
  position: relative;
  padding: 20px;
}

.fancy-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, #2c98f0, #6a20b0, #2c98f0);
  border-image-slice: 1;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fancy-border.visible::before {
  opacity: 1;
}

/* Horizontal parallax for background elements */
.horizontal-parallax {
  position: absolute;
  transition: transform 0.1s ease-out;
  will-change: transform;
  pointer-events: none;
}

/* Professional rotating logo - left positioned, no background circle */
.rotating-logo {
  position: absolute;
  top: 25%;
  left: 5%;
  z-index: 10;
  /* Removed background circle and blur effects */
}

.spinning-logo {
  width: 400px;
  height: 400px;
  animation: professional-logo-spin 6s linear infinite;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
  transform-origin: center center;
  transform-style: preserve-3d;
}

/* Professional slow Y-axis rotation around center - YATAY DÖNME */
@keyframes professional-logo-spin {
  0% { 
    transform: rotateY(0deg) scale(1); 
  }
  25% { 
    transform: rotateY(90deg) scale(1.05); 
  }
  50% { 
    transform: rotateY(180deg) scale(1); 
  }
  75% { 
    transform: rotateY(270deg) scale(1.05); 
  }
  100% { 
    transform: rotateY(360deg) scale(1); 
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Button hover fixes */
.btn {
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  width: auto !important;
}

.btn-primary {
  background: linear-gradient(45deg, #2c98f0, #6a20b0);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #6a20b0, #2c98f0);
}

/* Modern Corporate Demo Section */
.demo-section {
  padding: 100px 0;
  position: relative;
}

.demo-content {
  color: white;
}

.demo-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  text-shadow: 0 3px 15px rgba(0,0,0,0.5);
  letter-spacing: 1px;
}

.demo-subtitle {
  font-size: 1.3rem;
  margin-bottom: 50px;
  opacity: 0.95;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Ultra Modern Glass Demo Form */
.professional-demo-form {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px);
  border-radius: 25px;
  padding: 50px;
  margin-top: 40px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.professional-demo-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.demo-form {
  text-align: left;
}

.form-section {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-title {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 10px;
  padding-left: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.demo-form .form-group {
  margin-bottom: 25px;
}

.demo-form label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.demo-form .form-control {
  height: 55px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-weight: 500;
}

.demo-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.demo-form .form-control:focus {
  border-color: rgba(52, 152, 219, 0.8);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 0 0 0.3rem rgba(52, 152, 219, 0.2),
    0 8px 25px rgba(0, 0, 0, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.demo-form textarea.form-control {
  height: auto;
  resize: vertical;
  min-height: 130px;
  padding: 18px 20px;
}

.demo-form select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath d='m7.247 4.86-4.796 5.481c-.566.647-.106 1.659.753 1.659h9.592a1 1 0 0 0 .753-1.659l-4.796-5.48a1 1 0 0 0-1.506 0z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}

/* Ultra Modern Submit Button */
.demo-submit-btn {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.9) 0%, rgba(41, 128, 185, 0.9) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 30px rgba(52, 152, 219, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

.demo-submit-btn:hover::before {
  left: 100%;
}

.demo-submit-btn:hover {
  background: linear-gradient(135deg, rgba(41, 128, 185, 1) 0%, rgba(52, 152, 219, 1) 100%);
  transform: translateY(-5px);
  box-shadow: 
    0 20px 40px rgba(52, 152, 219, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.demo-submit-btn:active {
  transform: translateY(-2px);
}

.form-actions {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-note {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsive design for modern demo form */
@media (max-width: 768px) {
  .professional-demo-form {
    padding: 35px 25px;
    margin-top: 30px;
    border-radius: 20px;
  }
  
  .demo-title {
    font-size: 2.5rem;
  }
  
  .demo-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .demo-submit-btn {
    padding: 16px 35px;
    font-size: 1rem;
  }
  
  /* Stats section mobile responsive */
  .parallax-stats-section .stats-header h2 {
    font-size: 2.2rem;
  }
  
  .parallax-stats-section .stats-header p {
    font-size: 1.1rem;
  }
  
  .glass-stat-card {
    margin-bottom: 20px;
    padding: 30px 20px;
  }
  
  .glass-stat-card .colorlib-counter {
    font-size: 2.8rem;
  }
  
  .glass-stat-card .stat-label {
    font-size: 0.9rem;
  }
}

/* Customize pricing cards */
.pricing.tilt-card {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  min-height: 320px;
}

.pricing.tilt-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pricing .parallax-element {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  padding: 30px 20px;
}

/* Ensure equal card sizes */
.pricing .price {
  font-size: 2.5em;
  font-weight: bold;
  color: #2c98f0;
  margin: 20px 0;
}

.pricing-heading {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #333;
}

/* Demo form styling - MERKEZİ VE DÜZGÜN */
.demo-form-container {
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(44,152,240,0.15) 100%);
  padding: 50px;
  border-radius: 25px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.demo-form-container .form-control {
  background: rgba(255,255,255,0.95);
  border: 2px solid rgba(44,152,240,0.1);
  border-radius: 15px;
  padding: 18px 20px;
  font-size: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.demo-form-container .form-control:focus {
  box-shadow: 0 8px 30px rgba(44,152,240,0.4);
  transform: translateY(-3px);
  border-color: #2c98f0;
}

.demo-form-container .btn-primary.btn-block {
  background: linear-gradient(45deg, #2c98f0, #1e87e6);
  border: none;
  border-radius: 50px;
  padding: 20px 50px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 15px 30px rgba(44,152,240,0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 20px auto;
  display: block;
  width: 100%;
  max-width: 350px;
}

.demo-form-container .btn-primary.btn-block:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.demo-form-container .btn-primary.btn-block:hover:before {
  left: 100%;
}

.demo-form-container .btn-primary.btn-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(44,152,240,0.5);
}

/* Form row alignment */
.demo-form-container .row {
  margin-bottom: 0;
}

.demo-form-container .form-group {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .parallax-content h2 {
    font-size: 36px;
  }
  
  .parallax-content p {
    font-size: 16px;
  }
  
  .rotating-logo {
    top: 20%;
    left: 5%;
    padding: 15px;
  }
  
  .spinning-logo {
    width: 120px;
    height: 120px;
  }
  
  .demo-form-container {
    padding: 30px;
    margin: 0 20px;
  }
}

/* GÜÇLÜ SCROLL ANIMATIONS - PARALLAX PARALLAX! */
.fade-in {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-120px) rotateY(-15deg);
  transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(120px) rotateY(15deg);
  transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.zoom-in {
  opacity: 0;
  transform: scale(0.5) rotateZ(-10deg);
  transition: all 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-in.visible {
  opacity: 1;
  transform: scale(1) rotateZ(0);
}

.rotate-in {
  opacity: 0;
  transform: rotateY(-90deg) scale(0.7);
  transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rotate-in.visible {
  opacity: 1;
  transform: rotateY(0) scale(1);
}

/* GÜÇLÜ Staggered reveal animation */
.stagger-reveal .stagger-item {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
  transition: all 0.5s ease-out;
}

.stagger-reveal .stagger-item.visible:nth-child(1) { transition-delay: 0.2s; }
.stagger-reveal .stagger-item.visible:nth-child(2) { transition-delay: 0.4s; }
.stagger-reveal .stagger-item.visible:nth-child(3) { transition-delay: 0.6s; }
.stagger-reveal .stagger-item.visible:nth-child(4) { transition-delay: 0.8s; }
.stagger-reveal .stagger-item.visible:nth-child(5) { transition-delay: 1.0s; }

.stagger-reveal .stagger-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0);
} 

/* ==================================================
*  KURUMSAL ANIMASYON SISTEMI - BASIT VE TEMIZ
*  ================================================== */

/* Professional fade-in animation - Always visible for corporate consistency */
.animate-box {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.3s ease-out;
}

.animate-box.fadeInUp {
  opacity: 1;
  transform: translateY(0);
}

/* Professional logo animation */
.animate-logo {
  animation: professional-logo-spin 6s linear infinite;
  transform-style: preserve-3d;
}

@keyframes professional-logo-spin {
  0% { transform: rotateY(0deg) scale(1); }
  25% { transform: rotateY(90deg) scale(1.05); }
  50% { transform: rotateY(180deg) scale(1); }
  75% { transform: rotateY(270deg) scale(1.05); }
  100% { transform: rotateY(360deg) scale(1); }
}

/* Simple hover effects */
.btn:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* Professional card hover */
.services:hover,
.glass-stat-card:hover,
.professional-demo-form:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* ==================================================
*  PARALLAX EFFECTS - CLEAN AND SIMPLE
*  ================================================== */

/* Professional floating icon animations - REMOVED */

/* Remove complex tilt card animations */
.tilt-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tilt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
} 

/* Professional info section styling */
.professional-info-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
}

.professional-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/work-6.jpg') center center;
  background-size: cover;
  opacity: 0.2;
  z-index: 1;
}

.info-content {
  position: relative;
  z-index: 2;
  padding: 50px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.info-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 30px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.info-content p {
  font-size: 1.2rem;
  color: white;
  line-height: 1.8;
  margin-bottom: 40px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Corporate background styling */
.colorlib-bg-light {
  background-color: #f8f9fa;
  padding: 100px 0;
} 

/* Lavren Professional Hero Section */
.hero-section-professional {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(52, 73, 94, 0.9) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  padding: 60px 0;
}

.product-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
}

.product-logo-img {
  width: 80px;
  height: 80px;
  filter: brightness(1.2);
}

.product-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  opacity: 0.95;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-actions {
  margin-bottom: 50px;
}

.btn-hero {
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 10px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background: white;
  color: #667eea;
  border-color: white;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Professional Features Section */
.features-section-professional {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 25px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: #5a6c7d;
  line-height: 1.7;
  margin-bottom: 60px;
}

.features-grid {
  margin-top: 60px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px 35px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-card.premium {
  border-left: 5px solid #3498db;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-icon i {
  font-size: 30px;
  color: white;
}

.feature-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-content p {
  color: #5a6c7d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 8px 0;
  color: #34495e;
  position: relative;
  padding-left: 25px;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  			color: #1e3a8a;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .feature-card {
    padding: 30px 25px;
  }
} 

/* Professional Minimalist Navigation - Giriş yap sayfasındaki gibi */
/* Navbar stilleri navbar-consistent.css dosyasında tanımlı - çakışmayı önlemek için devre dışı bırakıldı */
/*
.colorlib-nav {
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.colorlib-nav .top-menu {
  padding: 0;
}
*/

/* Navbar stilleri navbar-consistent.css dosyasında tanımlı - çakışmayı önlemek için devre dışı bırakıldı */

/* Navbar için body padding navbar-consistent.css ve sayfa özel stillerinde tanımlı - çakışmayı önlemek için devre dışı bırakıldı */
/*
body {
  padding-top: 55px;
}
*/

/* Parallax overlay'i kaldır */
.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
}

/* Corporate Section Spacing */
.content-section {
  padding: 100px 0;
}

/* Corporate Colors Override */
.colorlib-bg-white {
  background: #ffffff;
}

.colorlib-bg-light {
  background: #f8f9fa;
}

/* Keep original typography colors - remove override */

/* Keep original footer styles */

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Reduce overlay for better background visibility */
.parallax-overlay {
  background: rgba(0, 0, 0, 0.15);
}

/* Professional spacing */
.row-pb-md {
  padding-bottom: 80px;
}

.row-pb-lg {
  padding-bottom: 120px;
} 

/* Removed intro feature cards - using standard colorlib-services now */ 

/* Parallax Glass Stats Section */
.parallax-stats-section {
  padding: 80px 0;
  position: relative;
}

.parallax-stats-section .stats-header h2 {
  color: white;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
}

.parallax-stats-section .stats-header p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  margin-bottom: 40px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.stats-grid {
  margin-top: 20px;
}

.glass-stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 35px 25px;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.glass-stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.glass-stat-card .stat-number {
  margin-bottom: 5px;
}

.glass-stat-card .colorlib-counter {
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  display: block;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.glass-stat-card .stat-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  margin-top: 5px;
}

/* Parallax Section Text Colors - Make them white and bold */
.parallax-section h2 {
  color: white !important;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
  font-weight: 700 !important;
}

.parallax-section p {
  color: white !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 600 !important;
}

.parallax-section .colorlib-services h3 {
  color: white !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: 700 !important;
}

.parallax-section .colorlib-services p {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  font-weight: 500 !important;
}

/* Reduce spacing between sections and text */
.colorlib-intro.parallax-section {
  padding-bottom: 60px;
}

.colorlib-intro.parallax-section .colorlib-heading {
  margin-bottom: 30px;
}

.colorlib-work-featured {
  padding-top: 60px;
} 

/* Fix colorlib-services background issue */
.colorlib-services.reveal-section {
  background: transparent !important;
  padding: 100px 0;
}

.colorlib-services .services {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.colorlib-services .services:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
} 

/* ==================================================
*  KURUMSAL RESPONSIVE DESIGN STANDARDS
*  ================================================== */

@media (max-width: 768px) {
  /* Mobile font adjustments */
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.75rem !important; }
  h3 { font-size: 1.5rem !important; }
  
  /* Mobile spacing */
  .parallax-section {
    padding: 60px 0 !important;
  }
  
  /* Mobile animations - reduced for performance */
  .animate-box {
    transition: all 0.5s ease-out !important;
  }
}

/* ==================================================
*  KURUMSAL SITE OPTIMIZASYONU - PERFORMANS
*  ================================================== */

/* Remove unnecessary transforms for better performance */
* {
  will-change: auto;
}

/* Hardware acceleration only for essential animations */
.animate-logo,
.btn:hover,
.professional-demo-form {
  will-change: transform;
}

/* Final cleanup - ensure all text uses corporate font */
/* .colorlib-nav a, - navbar-consistent.css'te tanımlı */
.colorlib-footer p,
.colorlib-footer a,
.colorlib-footer h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif !important;
}

/* ==================================================
*  KURUMSAL BRAND TUTARLILIGI TAMAMLANDI
*  ================================================== */ 

/* ==================================================
*  KURUMSAL GÖRÜNÜRLÜK DÜZELTMELERI
*  ================================================== */

/* Tüm elementlerin görünür olması için global düzeltmeler */
.fade-in-gentle,
.fade-in-up,
.fade-in-left,
.fade-in-right,
.zoom-in,
.rotate-in,
.slide-in-left,
.slide-in-right,
.parallax-content,
.content-box {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

/* Parallax content her zaman görünür olsun */
.parallax-content h2,
.parallax-content p,
.parallax-content .btn {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Corporate scroll animations - basit ve güvenilir */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger animasyonları - her zaman görünür */
.stagger-reveal .stagger-item,
.stagger-reveal .stagger-item.visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) rotateX(0) !important;
} 