/* Sektör Modülleri - Premium Tasarım */

/* Alan Genel Tasarımı */
.sectors-served-area {
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.sectors-served-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Sektör Kartları - Ana Tasarım */
.sector-item {
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  background: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08), 
              0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Kart Arka Plan Gradient */
.sector-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
              rgba(99, 102, 241, 0.05) 0%, 
              rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Kart Üst Accent */
.sector-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.sector-item:hover::before {
  opacity: 1;
}

.sector-item:hover::after {
  opacity: 1;
}

.sector-item:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.16), 
              0 8px 16px rgba(139, 92, 246, 0.08);
}

/* İkon Sarmalayıcı - Geliştirilmiş */
.sector-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3),
              inset 0 -2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

/* İkon Wrap Iç Glow */
.sector-icon-wrap::before {
  content: '';
  position: absolute;
  inset: 3px;
  background: linear-gradient(135deg, 
              rgba(255, 255, 255, 0.2) 0%, 
              transparent 100%);
  border-radius: 15px;
  opacity: 0.6;
}

.sector-item:hover .sector-icon-wrap {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.45),
              0 4px 12px rgba(139, 92, 246, 0.3),
              inset 0 -2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.sector-icon-wrap i {
  font-size: 28px;
  color: #ffffff !important;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Sektör Başlıkları - Geliştirilmiş */
.sector-item h4 {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #1e293b;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}

.sector-item:hover h4 {
  color: #6366f1;
  transform: translateY(-2px);
}

/* Project Count Badge - Premium Tasarım */
.project-count {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Badge Shine Efekti */
.project-count::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 ease;
}

.sector-item:hover .project-count::before {
  left: 100%;
}

.sector-item:hover .project-count {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.45),
              0 2px 8px rgba(139, 92, 246, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

/* Grid Düzeni - Geliştirilmiş */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  padding: 0;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1400px) {
  .sectors-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .sectors-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Tablet Responsive */
@media (max-width: 991px) {
  .sectors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .sector-item {
    padding: 28px 20px;
    border-radius: 18px;
  }
  
  .sector-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 16px;
  }
  
  .sector-icon-wrap i {
    font-size: 24px;
  }
  
  .sector-item h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .project-count {
    padding: 7px 14px;
    font-size: 11px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sectors-served-area {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .sector-item {
    padding: 24px 16px;
    border-radius: 16px;
  }
  
  .sector-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 14px;
  }
  
  .sector-icon-wrap i {
    font-size: 22px;
  }
  
  .sector-item h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .project-count {
    padding: 6px 12px;
    font-size: 10px;
    border-radius: 20px;
  }
  
  .sector-item:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .sector-item {
    padding: 26px 20px;
    border-radius: 16px;
    max-width: 100%;
  }
  
  .sector-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }
  
  .sector-icon-wrap i {
    font-size: 24px;
  }
  
  .sector-item h4 {
    font-size: 15px;
  }
  
  .project-count {
    padding: 7px 14px;
    font-size: 11px;
  }
}

/* Bölüm Başlığı Stilleri */
.section-title-wrap {
  position: relative;
  z-index: 1;
}

.section-title-wrap .chy-section-para-1 {
  font-size: 18px;
  color: #64748b;
  margin-top: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* Animasyon Efektleri - Geliştirilmiş */
@keyframes sectorFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.sector-item {
  animation: sectorFadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.sector-item:hover .sector-icon-wrap i {
  animation: iconFloat 2s ease-in-out infinite;
}

/* Cascade Animation Delay */
.sector-item:nth-child(1) { animation-delay: 0.05s; }
.sector-item:nth-child(2) { animation-delay: 0.1s; }
.sector-item:nth-child(3) { animation-delay: 0.15s; }
.sector-item:nth-child(4) { animation-delay: 0.2s; }
.sector-item:nth-child(5) { animation-delay: 0.25s; }
.sector-item:nth-child(6) { animation-delay: 0.3s; }
.sector-item:nth-child(7) { animation-delay: 0.35s; }
.sector-item:nth-child(8) { animation-delay: 0.4s; }
.sector-item:nth-child(9) { animation-delay: 0.45s; }
.sector-item:nth-child(10) { animation-delay: 0.5s; }
.sector-item:nth-child(11) { animation-delay: 0.55s; }
.sector-item:nth-child(12) { animation-delay: 0.6s; }
.sector-item:nth-child(13) { animation-delay: 0.65s; }
.sector-item:nth-child(14) { animation-delay: 0.7s; }
.sector-item:nth-child(15) { animation-delay: 0.75s; }
.sector-item:nth-child(16) { animation-delay: 0.8s; }
.sector-item:nth-child(17) { animation-delay: 0.85s; }
.sector-item:nth-child(18) { animation-delay: 0.9s; }
.sector-item:nth-child(19) { animation-delay: 0.95s; }
.sector-item:nth-child(20) { animation-delay: 1s; }
.sector-item:nth-child(21) { animation-delay: 1.05s; }
.sector-item:nth-child(22) { animation-delay: 1.1s; }
.sector-item:nth-child(23) { animation-delay: 1.15s; }

/* Performance Optimization */
.sector-item,
.sector-icon-wrap,
.project-count {
  will-change: transform;
}

.sector-item:hover {
  will-change: transform, box-shadow, border-color;
}

/* ========================================
   Proje Workflow Tasarımı - Premium
   ======================================== */

.project-workflow-area {
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  position: relative;
  overflow: hidden;
}

.project-workflow-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Workflow Timeline Container */
.workflow-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Merkezi Çizgi */
.workflow-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 80px;
  bottom: 80px;
  width: 3px;
  background: linear-gradient(180deg, 
              transparent 0%,
              #6366f1 10%,
              #8b5cf6 50%,
              #a855f7 90%,
              transparent 100%);
  transform: translateX(-50%);
  z-index: 0;
}

/* Workflow Step Container */
.project-workflow-step {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.project-workflow-step:nth-child(even) {
  flex-direction: row-reverse;
}

/* Step Number - Premium Design */
.project-step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35),
              inset 0 -4px 12px rgba(0, 0, 0, 0.15),
              inset 0 2px 6px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.project-step-number::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.project-workflow-step:hover .project-step-number {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 16px 36px rgba(99, 102, 241, 0.45),
              inset 0 -4px 12px rgba(0, 0, 0, 0.2),
              inset 0 2px 8px rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.project-workflow-step:hover .project-step-number::before {
  opacity: 1;
}

/* Step Content */
.project-step-content {
  flex: 1;
  background: white;
  padding: 32px;
  border-radius: 20px;
  margin: 0 40px;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1),
              0 2px 8px rgba(0, 0, 0, 0.04);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.project-step-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-workflow-step:hover .project-step-content {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 16px 36px rgba(99, 102, 241, 0.15),
              0 4px 12px rgba(139, 92, 246, 0.1);
}

.project-workflow-step:hover .project-step-content::before {
  opacity: 1;
}

/* Step Icon */
.project-step-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.project-step-icon i {
  font-size: 24px;
  color: #6366f1;
  transition: all 0.3s ease;
}

.project-workflow-step:hover .project-step-icon {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  transform: scale(1.1);
}

.project-workflow-step:hover .project-step-icon i {
  color: white;
}

/* Step Title */
.project-step-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.project-workflow-step:hover .project-step-content h4 {
  color: #6366f1;
}

/* Step Description */
.project-step-content p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
  .workflow-timeline::before {
    display: none;
  }
  
  .project-workflow-step {
    flex-direction: column !important;
    margin-bottom: 40px;
    text-align: center;
  }
  
  .project-step-content {
    margin: 24px 0 0 0;
  }
  
  .project-step-icon {
    margin: 0 auto 16px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .project-workflow-area {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  
  .workflow-timeline {
    padding: 20px 10px;
  }
  
  .project-workflow-step {
    margin-bottom: 32px;
  }
  
  .project-step-number {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }
  
  .project-step-content {
    padding: 24px;
    border-radius: 16px;
  }
  
  .project-step-content h4 {
    font-size: 18px;
  }
  
  .project-step-content p {
    font-size: 14px;
  }
  
  .project-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  
  .project-step-icon i {
    font-size: 20px;
  }
}

/* Workflow Animasyonlar */
@keyframes workflowFadeIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes workflowFadeInReverse {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.project-workflow-step {
  animation: workflowFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.project-workflow-step:nth-child(even) {
  animation-name: workflowFadeInReverse;
}

.project-workflow-step:nth-child(1) { animation-delay: 0.1s; }
.project-workflow-step:nth-child(2) { animation-delay: 0.2s; }
.project-workflow-step:nth-child(3) { animation-delay: 0.3s; }
.project-workflow-step:nth-child(4) { animation-delay: 0.4s; }
.project-workflow-step:nth-child(5) { animation-delay: 0.5s; }
.project-workflow-step:nth-child(6) { animation-delay: 0.6s; }


