/* Software Services Section */
.software-services-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8faf8 0%, #ffffff 50%, #f0f5f0 100%);
}

.software-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Services Overview */
.services-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  align-items: center;
}

.overview-content h3 {
  font-size: 2.2rem;
  color: #2d3e2e;
  margin-bottom: 1.5rem;
  position: relative;
}

.overview-content h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, #516953, #7fb069);
  border-radius: 2px;
}

.overview-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a6b5a;
  margin-bottom: 2rem;
}

.overview-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.overview-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(127, 176, 105, 0.1);
  border-radius: 10px;
  border-left: 4px solid #7fb069;
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #516953, #7fb069);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.stat-data {
  font-weight: 600;
  color: #2d3e2e;
}

/* Tech Showcase */
.overview-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.tech-item {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(81, 105, 83, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.tech-item:hover,
.tech-item.active {
  transform: translateY(-5px);
  border-color: #7fb069;
  box-shadow: 0 8px 30px rgba(81, 105, 83, 0.2);
}

.tech-item i {
  font-size: 2rem;
  color: #7fb069;
  margin-bottom: 1rem;
  display: block;
}

.tech-item span {
  font-weight: 600;
  color: #2d3e2e;
  font-size: 0.9rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 6rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 6px 30px rgba(81, 105, 83, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(127, 176, 105, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #516953, #7fb069);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(81, 105, 83, 0.2);
}

.service-card.featured {
  border: 2px solid #7fb069;
  background: linear-gradient(
    135deg,
    rgba(127, 176, 105, 0.05),
    rgba(255, 255, 255, 0.95)
  );
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #516953, #7fb069);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.service-header h3 {
  font-size: 1.4rem;
  color: #2d3e2e;
  margin: 0;
  flex: 1;
}

.service-badge {
  background: linear-gradient(45deg, #7fb069, #9bc53d);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  position: absolute;
  top: -10px;
  right: 0;
}

.service-content p {
  color: #5a6b5a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  color: #2d3e2e;
}

.service-features i {
  color: #7fb069;
  font-size: 0.9rem;
  width: 16px;
}

.service-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(81, 105, 83, 0.1);
  color: #516953;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(81, 105, 83, 0.2);
}

/* Development Process */
.development-process {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 6rem;
  box-shadow: 0 6px 30px rgba(81, 105, 83, 0.1);
}

.development-process h3 {
  font-size: 2rem;
  color: #2d3e2e;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.development-process h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, #516953, #7fb069);
  border-radius: 2px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #516953, #7fb069);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.step-content h4 {
  color: #2d3e2e;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.step-content p {
  color: #5a6b5a;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Tech Stack */
.tech-stack {
  background: linear-gradient(
    135deg,
    rgba(81, 105, 83, 0.05),
    rgba(127, 176, 105, 0.05)
  );
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 6rem;
}

.tech-stack h3 {
  font-size: 2rem;
  color: #2d3e2e;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.tech-stack h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(45deg, #516953, #7fb069);
  border-radius: 2px;
}

.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 2rem;
}

.tech-category {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(81, 105, 83, 0.1);
}

.tech-category h4 {
  color: #2d3e2e;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tech-category h4 i {
  color: #7fb069;
  font-size: 1.1rem;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tech-items span {
  background: rgba(81, 105, 83, 0.1);
  color: #516953;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(81, 105, 83, 0.2);
  transition: all 0.3s ease;
}

.tech-items span:hover {
  background: #7fb069;
  color: white;
  transform: translateY(-2px);
}

/* CTA Section */
.software-cta {
  background: linear-gradient(135deg, #2d3e2e 0%, #516953 100%);
  border-radius: 25px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  color: white;
}

.cta-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: rgba(127, 176, 105, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7fb069;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-overview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .tech-categories {
    grid-template-columns: 1fr;
  }

  .software-cta {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .tech-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .software-services-section {
    padding: 4rem 0;
  }

  .software-container {
    padding: 0 15px;
  }

  .service-card {
    padding: 1.5rem;
  }

  .overview-content h3 {
    font-size: 1.8rem;
  }

  .development-process,
  .tech-stack {
    padding: 2rem;
  }
}
