/* Page entrypoint: expertises */
@import url("./common.css");

.service-item {
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
}

.icon-box {
  background-color: #ea0c22;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.icon-box i {
  font-size: 32px;
  color: #fff;
}

.btn-primary,
.btn-learn-more,
.service-item,
.footer-link-list a {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Bloc plan stratégique (fusion avec l’ancienne page plan-strategique.php) */
.plan-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  gap: var(--kp-space-4, 1rem);
}

.plan-step:last-child {
  margin-bottom: 0;
}

.plan-step::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: -20px;
  width: 4px;
  background-color: #ea0c22;
  z-index: 0;
}

.plan-step:last-child::before {
  display: none;
}

.plan-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: #ea0c22;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  z-index: 1;
  margin-right: 1.5rem;
}

.plan-content {
  flex-grow: 1;
  background-color: #f8f8f8;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.plan-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .plan-step::before {
    display: none;
  }
}
