body {
  background: #0e0e0e;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* HERO */
.services-hero {
  padding: 110px 0;
  background: radial-gradient(circle at top, #1f1f1f, #0b0b0b);
}

.services-hero h1 {
  font-size: 3.6rem;
  font-weight: 700;
}

.services-hero h1 span {
  color: #e6b65c;
}

.services-hero p {
  opacity: 0.8;
}

/* PAGE */
.services-page {
  padding: 90px 0;
}

.service-category {
  margin-bottom: 90px;
}

.service-category h3 {
  font-size: 2rem;
  font-weight: 600;
}

/* CARD */
.service-card {
  background: linear-gradient(145deg, #1a1a1a, #101010);
  padding: 35px;
  border-radius: 22px;
  transition: all 0.45s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(230,182,92,0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-card:hover {
  transform: translateY(-16px) scale(1.05);
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}

.service-card h5 {
  font-size: 1.2rem;
  font-weight: 600;
}

.service-card p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin: 10px 0 15px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e6b65c;
}

/* Highlight */
.service-card.highlight {
  border: 1px solid #e6b65c;
}

/* ANIMATION */
.animate,
.animate-card {
  opacity: 0;
  transform: translateY(90px) scale(0.85);
}

.animate.show,
.animate-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

/* MOBILE */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2.4rem;
  }
}
