/* Service Hero Section */
.service-hero {
  position: relative;
  /* background: linear-gradient(135deg,
        rgba(57, 94, 136, 0.35) 0%,
        rgba(57, 94, 136, 0.35) 100%); */
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--berloga-white);
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Фоновое изображение теперь задается динамически через PHP */
}

.service-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.service-hero__container {
  max-width: 1320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  margin: 0 auto;
  /* padding: 0 30px; */
  position: relative;
  z-index: 2;
}

.service-hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  padding: 120px 0;
}

/* Хлебные крошки */
.service-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-hero .service-hero__breadcrumbs .service-hero__breadcrumb {
  font-family: var(--accent-text-font-family);
  font-weight: var(--accent-text-font-weight);
  font-size: var(--accent-text-font-size);
  color: var(--berloga-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.service-hero .service-hero__breadcrumbs .service-hero__breadcrumb:hover {
  opacity: 0.8;
}

.service-hero .service-hero__breadcrumbs .service-hero__breadcrumb--current {
  pointer-events: none;
}

.service-hero__breadcrumb-arrow {
  flex-shrink: 0;
}

/* Заголовок */
.service-hero__title {
  font-family: var(--hero-h1-font-family);
  font-weight: var(--hero-h1-font-weight);
  font-size: var(--hero-h1-font-size);
  line-height: var(--hero-h1-line-height);
  color: var(--berloga-white);
  margin: 0;
  text-transform: capitalize;
}

/* Цены */
.service-hero__prices {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-hero__price-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.service-hero__price-label {
  font-family: var(--accent-text-font-family);
  font-weight: var(--accent-text-font-weight);
  font-size: var(--accent-text-font-size);
  color: var(--berloga-white);
}

.service-hero__price-value {
  font-family: var(--h3-font-family);
  font-weight: var(--h3-font-weight);
  font-size: var(--h3-font-size);
  color: var(--berloga-white);
}

/* Кнопки действий */
.service-hero__actions {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Адаптивность */
@media (max-width: 1200px) {
  .service-hero__content {
    padding: 100px 0;
    gap: 30px;
  }

  .service-hero__price-item {
    gap: 30px;
  }

  .service-hero__actions {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 50vh;
  }

  .service-hero__content {
    padding: 60px 0;
    gap: 20px;
  }

  .service-hero__breadcrumbs {
    gap: 8px;
  }

  .service-hero .service-hero__breadcrumbs .service-hero__breadcrumb {
    font-size: 16px;
  }

  .service-hero__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .service-hero__price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .service-hero__price-label {
    font-size: 16px;
  }

  .service-hero__price-value {
    font-size: 24px;
  }

  .service-hero__actions {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .service-hero__actions .button {
    width: 100%;
    justify-content: center;
  }
}