.services-main {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #1e1c1c;
}

.services-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-intro h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e1c1c;
}

.services-intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
  color: #bbb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-box {
  background: linear-gradient(145deg, #1c1c1c, #111);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(209, 193, 170, 0.15), transparent 70%);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 0;
}

.service-box:hover::before {
  opacity: 1;
}

.service-box:hover {
  transform: translateY(-6px);
  border-color: #d1c1aa;
}

.service-box h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.service-box p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
