.solutions-section__title {
  font-size: 96px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 60px 0;
  text-transform: uppercase;
  color: var(--color-orange);
  position: relative;
}

.solutions-section__title .highlighted {
  color: var(--color-orange);
}

/* Solutions Slider */
.solutions-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.solutions-slider__nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  padding: 0;
}

.solutions-slider__nav:hover {
  opacity: 0.7;
}

.solutions-slider__nav .slide-arrow {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.solutions-slider__nav .slide-arrow--left {
  transform: rotate(180deg);
}

.solutions-slider__nav .slide-arrow--right {
  transform: rotate(0deg);
}

.solutions-slider__wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.solutions-slider__track,
.solutions-slider__track.swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  padding: 10px 0;
}

/* Solution Card */
.solution-card,
.solution-card.swiper-slide {
  border-radius: 16px;
  width: 220px;
  min-width: 220px;
  height: 433px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
  flex-shrink: 0;
}

.solution-card:hover {
  box-shadow: 0 8px 30px rgba(243, 146, 55, 0.2);
}

.solution-card__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.solution-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card__image img[src=""],
.solution-card__image img:not([src]) {
  display: none;
}

.solution-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  text-align: center;
  background-color: #fff;
}

.solution-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.solution-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.solution-card__button {
  padding: 10px 24px;
  border: 1.5px solid var(--color-orange);
  background: transparent;
  color: var(--color-orange);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: auto;
}

.solution-card__button:hover {
  background: var(--color-orange);
  color: white;
}

/* View All Button */
.solutions-section__view-all {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.solutions-view-all-button {
  min-height: 56px;
  padding: 0 115px;
  background-color: var(--color-orange);
  color: white;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 48px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
  font-family: var(--font-family-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.solutions-view-all-button:hover {
  box-shadow: 0 4px 12px rgba(243, 146, 55, 0.4);
  opacity: 0.95;
}

/* Responsive */

@media (max-width: 1023px) {
  .solutions-section__title {
    font-size: 32px;
    margin: 0 0 30px 0;
    line-height: 1.3;
  }

  .solutions-slider {
    margin-top: 30px;
    gap: 0;
  }

  /* Nav buttonları mobilde gizle */
  .solutions-slider__nav {
    display: none !important;
  }

  .solutions-slider__wrapper {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .solution-card,
  .solution-card.swiper-slide {
    width: 280px;
    min-width: 280px;
    height: auto;
    min-height: 380px;
  }

  .solution-card__image {
    height: 150px;
  }

  .solution-card__content {
    padding: 16px 14px;
  }

  .solution-card__title {
    font-size: 15px;
    margin: 0 0 10px 0;
  }

  .solution-card__desc {
    font-size: 12px;
    margin: 0 0 12px 0;
  }

  .solution-card__button {
    padding: 8px 20px;
    font-size: 12px;
  }

  .solutions-section__view-all {
    margin-top: 30px;
  }

  .solutions-view-all-button {
    min-height: 40px;
    padding: 0 60px;
    font-size: 16px;
  }

  .solutions-empty {
    padding: 40px 20px;
    font-size: 14px;
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .solutions-section__title {
    font-size: 48px;
    margin: 0 0 50px 0;
  }

  .solutions-slider {
    margin-top: 40px;
  }

  .solution-card,
  .solution-card.swiper-slide {
    width: 240px;
    min-width: 240px;
    height: 420px;
  }

  .solution-card__image {
    height: 170px;
  }

  .solution-card__content {
    padding: 18px 15px;
  }

  .solution-card__title {
    font-size: 15px;
  }

  .solution-card__desc {
    font-size: 12px;
  }

  .solutions-view-all-button {
    padding: 0 80px;
    font-size: 16px;
  }
}

/* Laptop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .solutions-section__title {
    font-size: 64px;
    margin: 0 0 50px 0;
  }

  .solution-card,
  .solution-card.swiper-slide {
    width: 220px;
    min-width: 220px;
    height: 410px;
  }

  .solution-card__image {
    height: 165px;
  }
}

/* Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
  .solutions-section__title {
    font-size: 80px;
  }
}

/* Empty State */
.solutions-empty {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 16px;
}
