/* Coming Soon Overlay Styles */
.service-card.coming-soon {
  position: relative !important;
  overflow: visible !important;
}

.service-card.coming-soon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 10;
  border-radius: 8px;
  pointer-events: none;
}

.service-card.coming-soon::after {
  content: 'Coming Soon';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 11;
  background-color: #00b4d8;
  padding: 10px 30px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
