* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0b1220;
  color: #fff;
}

/* HERO */
.services-hero {
  height: 50vh;
  background: linear-gradient(
      rgba(0,0,0,0.7),
      rgba(0,0,0,0.7)
    ),
    url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-hero h1 {
  font-size: 3.5rem;
}

.services-hero span {
  color: #e11d48;
}

.services-hero p {
  margin-top: 15px;
  font-size: 1.1rem;
}

/* SERVICES */
.services {
  padding: 80px 8%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #111827;
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.service-card h3 {
  margin-bottom: 15px;
  color: #e11d48;
}

/* CTA */
.services-cta {
  padding: 80px 8%;
  text-align: center;
  background: linear-gradient(135deg, #e11d48, #be123c);
}

.services-cta h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.btn {
  padding: 14px 32px;
  background: #020617;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  background: #020617;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 2.5rem;
  }
}
