.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-card .service-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(195, 162, 122, 0.05);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.service-card:hover .service-card-overlay {
  opacity: 1;
}

.service-card .service-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .service-card-image {
  overflow: hidden;
  height: 250px
}

.service-card .service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card .service-card-content {
  padding: 24px;
  /*height: calc(100% - 230px);*/
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card .service-card-title {
  display: inline-block;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.service-card .service-card-title:hover {
  color: var(--primary);
}

.service-card .service-card-description {
  color: var(--muted-foreground);
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 16px;
}

.service-card .service-card-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  line-height: 20px;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.service-card .service-card-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.service-card .service-card-meta-item .icon {
  color: var(--primary);
}

.service-card .service-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
}

.service-card .service-card-price {
  font-size: 24px;
}

.service-card .service-card-actions {
  display: flex;
  gap: 8px;
}

.service-card .service-card-actions .button {
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1710px) {
  .service-card .service-card-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-card .service-card-actions {
    width: 100%;
  }
  .service-card .service-card-actions .button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .service-card .service-card-actions {
    display: flex;
    flex-direction: column;
  }
}