.hero--services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
  background: url('/img/tarif2_bkg.jpg') center/cover;
}

.hero--services .hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 0;
}

.hero--services .container {
  position: relative;
  z-index: 1;
}

.hero_title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.hero_title-additional {
  color: #FF6B35;
}

.service-search {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  width: auto;
  margin: auto;
  max-width: 800px;
}

.service-search__form {
  width: 100%;
}

.service-search__main {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 10px;
}

.service-search__field {
  flex: 1;
  min-width: 200px;
}

.service-search__city {
  flex: 0 0 200px;
}

.service-search__types {
  flex: 2;
}

.service-search__submit {
  flex: 0 0 60px;
}

.service-search__select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  color: #374151;
  transition: border-color 0.3s ease;
}

.service-search__select:focus {
  outline: none;
  border-color: #FF6B35;
}

.service-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: absolute;
  max-width: 418px;
  background: #fff;
  transform: translateY(-50%);
  border-radius: 15px;
  padding: 10px;
}

.service-type {
  padding: 8px 16px;
  border: 2px solid #E5E7EB;
  border-radius: 20px;
  background: white;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.service-type:hover {
  border-color: #FF6B35;
  color: #FF6B35;
}

.service-type.active {
  background: #FF6B35;
  border-color: #FF6B35;
  color: white;
}

.service-search__button {
  color: #fff;
  height: 46px;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: -webkit-linear-gradient(182.24deg, #2b3056 -57.6%, #00acf5 119.54%);
  background: -moz- oldlinear-gradient(182.24deg, #2b3056 -57.6%, #00acf5 119.54%);
  background: linear-gradient(267.76deg, #2b3056 -57.6%, #00acf5 119.54%);
  border-radius: 19px;
}

.service-search__button:hover {
  background: linear-gradient(267.76deg, #1f2444 -57.6%, #0096d6 119.54%);
  box-shadow: 0 6px 18px rgba(0, 172, 245, 0.35);
  transform: translateY(-1px);
}

.service-search__button--secondary {
  background: #6B7280;
}

.service-search__button--secondary:hover {
  background: #4B5563;
}

.service-search__filters {
  text-align: center;
}

.service-search__filters-toggle {
  background: none;
  border: 2px solid #E5E7EB;
  color: #6B7280;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-search__filters-toggle:hover {
  border-color: #FF6B35;
  color: #FF6B35;
}

.service-search__advanced {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E5E7EB;
}

.service-search__input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 15px;
}

.service-search__input:focus {
  outline: none;
  border-color: #FF6B35;
}

.service-search__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.service-search__actions .service-search__button {
  width: auto;
  min-width: 120px;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 20px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs__list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs__list a:hover {
  color: white;
}

.breadcrumbs__list i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero_title h1 {
    font-size: 1.8rem;
  }

  .service-search {
    padding: 10px;
  }

  .service-search__main {
    flex-direction: column;
    gap: 15px;
  }

  .service-search__field {
    width: 100%;
    min-width: auto;
  }

  .service-search__types,
  .service-search__submit,
  .service-search__city {
    flex: 1;
  }

  .service-types {
    position: initial;
    justify-content: center;
    transform: none;
    padding: 0;
  }

  .service-type {
    font-size: 11px;
    padding: 6px 12px;
  }
}