.spa-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 30px 20px;
  }
  
  .spa-card-item {
    position: relative;
    overflow: hidden;
    background-color: #eceef2;
    border-radius: 12px;
    box-shadow: 0 3px 12px #1b1b1b;
    width: 100%;
    max-width: 700px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 0;
  }
  
  .spa-card-item::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1b1b1b;
    transition: bottom 0.4s ease;
    z-index: 1;
  }
  
  .spa-card-item:hover::before {
    bottom: 0;
  }
  
  .spa-card-item:hover {
    transform: translateY(-8px);
  }
  
  .spa-card-item * {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
  }
  
  .spa-card-item:hover .spa-card-title,
  .spa-card-item:hover .spa-card-text {
    color: #eceef2;
  }
  
  .spa-card-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 24px;
  }
  
  .spa-card-title {
    font-size: 36px;
    margin-bottom: 14px;
    font-weight: 600;
    color: #1b1b1b;
  }
  
  .spa-card-text {
    font-size: 20px;
    color: #1b1b1b;
    line-height: 1.6;
    text-align: justify;
  }
  
  @media (max-width: 768px) {
    .spa-card-item {
      padding: 24px;
    }
  
    .spa-card-img {
      height: 240px;
    }
  
    .spa-card-title {
      font-size: 28px;
    }
  
    .spa-card-text {
      font-size: 16px;
    }
  }
  