/* Yeni Bölüm Stilleri - Resimdeki Tasarıma Uygun */

.company-section {
  width: 100%;
  height: auto;
  margin-top: 3vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 4vw;
  gap: 4vw;
}

.company-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4vw;
}

.company-text {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 2vw;
  justify-content: center;
}

.company-title {
  font-size: 3.5vw;
  font-weight: 700;
  margin: 0;
  text-align: left;
  color: #000000;
  line-height: 1.2;
}

.company-description {
  font-size: 1.2vw;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.company-button-container {
  margin-top: 1vw;
}

@media only screen and (max-width: 768px) {
  .company-button-container {
    margin-top: 2vw;
  }
}

.company-button {
  padding: 0.4rem 2rem;
  font-size: 1rem;
  font-weight: 590;
  border-radius: 0.7rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background-color: #001d3d;
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.company-button:hover {
  background-color: #013266;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.company-arrow {
  margin-left: 0.5rem;
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.company-button:hover .company-arrow {
  transform: translate(2px, -2px);
}

.company-image {
  width: 45%;
  height: 28vw;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.company-icons {
  position: absolute;
  right: 2vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.company-icon.check {
  background-color: #10b981;
}

.company-icon.star {
  background-color: #3b82f6;
}

/* Responsive Tasarım */

/* Tablet */
@media only screen and (max-width: 1024px) {
  .company-section {
    margin-top: 2vw;
  }

  .company-content {
    gap: 3vw;
  }

  .company-title {
    font-size: 4vw;
  }

  .company-description {
    font-size: 1.4vw;
  }

  .company-image {
    width: 40%;
    height: 22vw;
  }
}

/* Mobil */
@media only screen and (max-width: 768px) {
  .company-section {
    margin-top: 6vw;
    padding: 0 4vw;
  }

  .company-content {
    flex-direction: column;
    align-items: center;
    gap: 24vw;
  }

  .company-text {
    width: 100%;
    order: 1;
    gap: 6vw;
  }

  .company-image {
    width: 100%;
    height: 40vw;
    order: 2;
  }

  .company-title {
    font-size: 6vw;
    text-align: center;
  }

  .company-description {
    font-size: 3.5vw;
    text-align: left;
  }

  .company-button {
    padding: 0.3rem 2rem;
    font-size: 1rem;
    border-radius: 1rem;
    justify-content: flex-start;
  }

  .company-icons {
    display: none;
  }
}

/* Nasıl Çalışıyoruz? Bölümü Stilleri */
.how-we-work-section {
  background-color: #001d3d;
  padding: 4vw 4vw;
  margin-top: 12vw;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(2, 20, 40, 0.3);
}

.how-we-work-container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-we-work-title {
  font-size: 3.5vw;
  font-weight: 700;
  color: white;
  margin-bottom: 2vw;
  margin-top: 0;
  text-align: left;
}

.how-we-work-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 3vw;
}

.how-we-work-content {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.work-step {
  display: flex;
  align-items: center;
  gap: 4vw;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
  margin-bottom: 4vw;
  position: relative;
}

.work-step:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -2vw;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.work-step.animate {
  opacity: 1;
  transform: translateY(0);
}

.step-left {
  flex: 1;
}

.step-number {
  font-size: 2.5vw;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 0.5px white;
  text-stroke: 0.5px white;
  text-align: left;
  margin-bottom: 1vw;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 2.2vw;
  font-weight: 600;
  color: white;
  margin-bottom: 0;
  line-height: 1.3;
}

.step-description {
  font-size: 1.2vw;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  padding-left: 2vw;
  margin-top: 1.5vw;
}

/* Responsive Tasarım - Nasıl Çalışıyoruz */

/* Tablet */
@media only screen and (max-width: 1024px) {
  .how-we-work-section {
    padding: 10vw 4vw;
  }

  .how-we-work-title {
    font-size: 4.5vw;
  }

  .step-number {
    font-size: 3vw;
    min-width: 5vw;
  }

  .step-title {
    font-size: 2.8vw;
  }

  .step-description {
    font-size: 1.5vw;
  }
}

/* Mobil */
@media only screen and (max-width: 768px) {
  .how-we-work-section {
    padding: 12vw 4vw;
    margin-top: 14vw;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(2, 20, 40, 0.2);
  }

  .how-we-work-title {
    font-size: 6vw;
    text-align: center;
  }

  .how-we-work-divider {
    margin-bottom: 8vw;
  }

  .how-we-work-content {
    gap: 8vw;
  }

  .work-step {
    display: flex;
    flex-direction: column;
    gap: 3vw;
    text-align: center;
  }

  .step-number {
    font-size: 4vw;
    color: transparent;
    -webkit-text-stroke: 0.5px white;
    text-stroke: 0.5px white;
    text-align: center;
    margin-bottom: 2vw;
  }

  .step-content {
    order: 2;
  }

  .step-title {
    font-size: 4.5vw;
    text-align: center;
  }

  .step-description {
    font-size: 3.5vw;
    text-align: center;
    order: 3;
    margin-top: 2vw;
  }
}

/* Küçük Mobil */
@media only screen and (max-width: 480px) {
  .how-we-work-section {
    padding: 15vw 4vw;
    margin-top: 16vw;
  }

  .how-we-work-title {
    font-size: 7vw;
  }

  .step-number {
    font-size: 5vw;
    color: transparent;
    -webkit-text-stroke: 0.5px white;
    text-stroke: 0.5px white;
  }

  .step-title {
    font-size: 5.5vw;
  }

  .step-description {
    font-size: 4vw;
  }
}

/* Her Sektöre Uygun Teknoloji Çözümleri Bölümü */
.tech-solutions-section {
  padding: 4vw 4vw;
  margin-top: -6vw;
  margin-bottom: 8vw;
}

.tech-solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.tech-solutions-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.tech-solutions-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.tech-solutions-description {
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 2rem;
}


.tech-solutions-steps {
  display: flex;
  gap: 2rem;
  position: relative;
}

.tech-solutions-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #001d3d;
  z-index: 1;
}

.tech-step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.tech-step-icon {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border: 2px solid #001d3d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  position: relative;
}

.tech-step-icon svg {
  width: 40px;
  height: 40px;
  color: #001d3d;
}

.tech-step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background-color: #001d3d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.tech-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tech-step-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.tech-step-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.tech-step-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Tasarım - Teknoloji Çözümleri */

/* Tablet */
@media only screen and (max-width: 1024px) {
  .tech-solutions-steps {
    flex-direction: column;
    gap: 3rem;
  }
  
  .tech-solutions-steps::before {
    display: none;
  }
}

/* Mobil */
@media only screen and (max-width: 768px) {
  .tech-solutions-section {
    padding: 6vw 4vw;
    margin-top: 2vw;
  }
  
  .tech-solutions-title {
    font-size: 2.5rem;
  }
  
  .tech-solutions-description {
    font-size: 1rem;
  }
  
  .tech-step-title {
    font-size: 1.25rem;
  }
  
  .tech-step-description {
    font-size: 0.9rem;
  }
}

/* Küçük Mobil */
@media only screen and (max-width: 480px) {
  .tech-solutions-section {
    padding: 15vw 4vw;
  }

  .tech-solutions-title {
    font-size: 7vw;
  }

  .tech-solutions-description {
    font-size: 4vw;
  }

  .solution-title {
    font-size: 5.5vw;
  }

  .solution-description {
    font-size: 4vw;
  }
}

/* Küçük Mobil */
@media only screen and (max-width: 480px) {
  .company-section {
    margin-top: 8vw;
    padding: 0 4vw;
  }

  .company-content {
    gap: 6vw;
  }

  .company-title {
    font-size: 7vw;
  }

  .company-description {
    font-size: 4vw;
  }

  .company-image {
    height: 45vw;
  }
}
