/* Modern Kurumsal Page - Corporate & Professional */
.kurumsal-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.kurumsal-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(220, 127, 13, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(22, 32, 51, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.kurumsal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Hero Section - Elegant & Minimal */
.kurumsal-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 40px;
  background: linear-gradient(135deg, #162033 0%, #1e3a5f 100%);
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(22, 32, 51, 0.2);
  position: relative;
  overflow: hidden;
}


.kurumsal-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #dc7f0d, transparent);
}

@keyframes heroGlow {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
    opacity: 1;
  }
  50% { 
    transform: translate(-20%, 20%) scale(1.1); 
    opacity: 0.8;
  }
}

.kurumsal-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.kurumsal-hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Section - Grid Layout */
.kurumsal-content {
  display: grid;
  gap: 50px;
}

.kurumsal-section {
  background: #fff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.kurumsal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #dc7f0d 0%, #ff9f40 100%);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.kurumsal-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 127, 13, 0.02) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.kurumsal-section:hover::before {
  transform: scaleY(1);
}

.kurumsal-section:hover::after {
  opacity: 1;
}

.kurumsal-section:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 3px solid #f5f5f5;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #dc7f0d, #ff9f40);
  transition: width 0.5s ease;
}

.kurumsal-section:hover .section-header::after {
  width: 150px;
}

.section-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dc7f0d 0%, #ff9f40 100%);
  border-radius: 20px;
  color: #fff;
  font-size: 36px;
  flex-shrink: 0;
  box-shadow: 0 12px 35px rgba(220, 127, 13, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.section-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #dc7f0d, #ff9f40);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(10px);
}

.kurumsal-section:hover .section-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 45px rgba(220, 127, 13, 0.4);
}

.kurumsal-section:hover .section-icon::before {
  opacity: 0.6;
}

.section-icon i {
  transition: transform 0.4s ease;
}

.kurumsal-section:hover .section-icon i {
  transform: scale(1.1);
}

.section-title-wrapper {
  flex: 1;
}

.section-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(220, 127, 13, 0.12);
  color: #dc7f0d;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.kurumsal-section:hover .section-badge {
  background: #dc7f0d;
  color: #fff;
  border-color: #dc7f0d;
  transform: translateX(5px);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #162033;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.kurumsal-section:hover .section-title {
  color: #dc7f0d;
}

/* Section Content */
.section-content {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4a5568;
}

.section-content p {
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}

.section-content p:last-child {
  margin-bottom: 0;
}

.section-content ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.section-content ul li {
  padding-left: 35px;
  margin-bottom: 15px;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}

.section-content ul li:hover {
  transform: translateX(5px);
  color: #162033;
}

.section-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #dc7f0d 0%, #ff9f40 100%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(220, 127, 13, 0.3);
  transition: all 0.3s ease;
}

.section-content ul li:hover::before {
  transform: rotate(360deg) scale(1.1);
}

.section-content ul li::after {
  content: '✓';
  position: absolute;
  left: 5px;
  top: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  z-index: 1;
}

/* Image Support */
.section-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 35px auto;
  max-width: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.section-image::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.section-image:hover::before {
  opacity: 1;
}

.section-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.section-image:hover img {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 992px) {
  .kurumsal-hero {
    padding: 60px 30px;
  }
  
  .kurumsal-hero-title {
    font-size: 3rem;
  }
  
  .kurumsal-section {
    padding: 40px 30px;
  }
  
  .section-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .kurumsal-page {
    padding: 100px 0 40px;
  }
  
  .kurumsal-hero {
    padding: 40px 20px;
    border-radius: 16px;
  }
  
  .kurumsal-hero-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
  
  .kurumsal-hero-subtitle {
    font-size: 1rem;
  }
  
  .kurumsal-content {
    gap: 30px;
  }
  
  .kurumsal-section {
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .section-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
    border-radius: 16px;
  }
  
  .section-content {
    font-size: 1rem;
  }
  
  .section-image img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .kurumsal-hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .section-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
}

/* WOW.js Animation Enhancement */
.kurumsal-section.wow {
  visibility: hidden;
}

.kurumsal-section.wow.animated {
  visibility: visible;
}
