/* Стили для кнопок услуг */
.services-buttons {
  padding: 3rem 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
  position: relative;
}

.services-buttons::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.services-buttons::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
}

/* Общие стили для всех кнопок */
.services-buttons .btn {
  padding: 1.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--primary-color);
}

/* Эффект свечения при наведении */
.services-buttons .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.services-buttons .btn:hover::before {
  left: 100%;
}

.services-buttons .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Стили для всех кнопок - однородный золотистый цвет */
.services-buttons .btn-primary,
.services-buttons .btn-secondary {
  background: var(--accent-color);
  color: var(--dark-color);
  font-weight: bold;
}

/* Мобильные стили для кнопок */
@media (max-width: 992px) {
  .services-buttons .btn {
    font-size: 0.95rem;
    padding: 1.2rem 1rem;
  }
}

@media (max-width: 768px) {
  .services-buttons {
    padding: 2rem 0;
  }

  .services-buttons .col-3 {
    width: 100%;
    padding: 0.5rem 1rem;
  }

  .services-buttons .btn {
    margin: 0;
    font-size: 0.9rem;
    padding: 1rem;
    width: 100%;
  }
}
