/* ================= SERVICES PAGE ================= */

.services-hero {
  background: #120d09;
  padding: 80px 20px;
  text-align: center;
}

.services-hero h1 {
  font-size: 3rem;
  color: #ffb347;
  margin-bottom: 10px;
}

.services-hero p {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
}

/* SERVICES GRID */
.services-section {
  margin: 100px auto;
}

.service-card {
  background: #1a1410;
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.service-card h4 {
  color: #ffb347;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.6;
}