/* Container Layout */
.wea-services-wrapper {
  background-color: #f8f7f3;
}

.wea-services-section {
  padding: 60px 15px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wea-services-top-layout {
  position: relative;
  width: 100%;
}

/* Hoofdtitel Styling */
.wea-services-title-col {
  flex: 1;
  min-width: 300px;
  transform: rotate(-9deg);
  z-index: 2;
  position: absolute;
  top: -70px;
  left: -40px;
}

.wea-services-heading {
  text-shadow: 2px 2px 10px rgb(0 0 0 / 0.3);
  font-family: "Bebas Kai Outline", "Karla", sans-serif;
  margin: 0;
  line-height: 0.91 !important;
  color: #181818;
  font-size: 80px !important;
  font-weight: 200 !important;
}

.wea-services-heading .wea-line-1 {
  display: block;
  font-style: italic !important;
}

.wea-services-heading .wea-line-2 {
  display: block;
  padding-left: 40px;
  font-style: italic !important;
}

/* Blokken Grid */
.wea-services-blocks-col {
  width: 90%;
  margin-left: auto;
  flex: 2;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 1;
}

.wea-service-card {
  background-color: #f0eef1;
  transform: skewX(-9deg);
  padding: 80px 60px;
  width: calc(33.333% - 20px);
  min-width: 250px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.wea-service-card:hover {
  transform: skewX(-9deg) scale(1.025);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.wea-service-card:nth-child(even) {
  scale: 1.075;
}

.wea-service-card:nth-child(even):hover {
  scale: 1.1;
}

.wea-service-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
}

.wea-service-badge {
  transform: skewX(0deg);
  background-color: #000;
  color: #fff;
  padding: 12px 25px;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-family: "Bebas Kai", sans-serif;
  font-size: 1.25rem !important;
  text-align: center;
}

.wea-service-badge .restore {
  transform: skewX(9deg);
  display: block;
}

.wea-service-subtitle {
  transform: skewX(9deg);
  text-align: center;
  margin-bottom: 30px;
}

.wea-service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wea-service-features li {
  font-weight: bold;
  background-color: #fff;
  padding: 10px 15px 10px 25px;
  position: relative;
}

.wea-feature-icon {
  position: absolute;
  top: 50%;
  left: -34px;
  transform: translateY(-50%);
  height: 54px;
  aspect-ratio: 1 / 0.9547383309;
}

.wea-feature-icon svg {
  height: 100%;
  width: 100%;
}

.wea-feature-text {
  display: block;
  transform: skewX(9deg);
}

.wea-service-price,
.wea-service-price-btn {
  margin-top: auto;
  background-color: #fff;
  color: #fb273c;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 1.2rem !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  font-family: "Bebas Kai", sans-serif !important;
}

.wea-service-price .restore,
.wea-service-price-btn .restore {
  transform: skewX(9deg);
  display: block;
}

.wea-services-buttons-row {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .wea-services-top-layout {
    flex-direction: column;
  }
  .wea-services-heading {
    text-align: center;
  }
  .wea-service-card {
    width: 100%;
    max-width: 400px;
    padding: 40px 30px;
    min-height: 1px;
  }
  .wea-services-section {
    min-height: 1px;
    padding-top: 100px;
  }
  .wea-service-card,
  .wea-service-badge .restore,
  .wea-service-subtitle,
  .wea-feature-text,
  .wea-service-price .restore,
  .wea-service-price-btn .restore {
    transform: skewX(0deg);
  }
  .wea-service-card:hover {
    transform: scale(1.025);
  }
  .wea-services-heading {
    font-size: 32px !important;
  }
  .wea-services-title-col {
    top: -40px;
    left: -80px;
  }
  .wea-services-blocks-col {
    width: 100%;
    margin-left: 0;
  }
  .wea-service-features {
    margin-left: 16px;
  }
  .wea-service-card:nth-child(even) {
    scale: 1;
  }

  .wea-service-card:nth-child(even):hover {
    scale: 1.025;
  }
}
