/* ===== Секция «Наши услуги» ===== */

/* ===== Заголовок и ссылка «Все услуги» ===== */
.sect-title-type-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.sect-title-type-1 .link-type-1 {
  font-size: 0.9rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.sect-title-type-1 .link-type-1:hover {
  color: #000;
}

/* ===== Список табов ===== */
.tab-list {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  overflow-x: auto;
}
.tab-list .item {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: #f0f0f0;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.tab-list .item.active {
  background: #FCD94E;
  color: #000;
}

/* ===== Swiper-контейнер ===== */
.swiper-services {
  position: relative;
  overflow: hidden;
  padding-bottom: 2rem; /* пространство для стрелок/пагинации */
}

/* ===== Карточка услуги ===== */
.swiper-services .swiper-slide {
  box-sizing: border-box;
}

.swiper-services .block_service:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.swiper-services .block_service h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}
.swiper-services .d_text {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* ===== Кнопка «Подробнее» ===== */

.swiper-services .btn-gray:hover {
  background: #ddd;
}

/* ===== Навигация Swiper ===== */
.swiper-services .swiper-button-prev,
.swiper-services .swiper-button-next {
  color: #333;
  bottom: 1rem;
}
.swiper-services .swiper-button-prev:hover,
.swiper-services .swiper-button-next:hover {
  color: #000;
}

/* ===== Пагинация ===== */
.swiper-services .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.swiper-services .swiper-pagination-bullet-active {
  background: #333;
}
