.services-map-section {
  position: relative;
  width: 100%;
  padding: 3rem 1.5rem;
  color: #fff;
  overflow: hidden;

  /* Mapa de fondo */
  background-image: url("mapa-alicante.jpg");
  background-size: cover;
  background-position: center;

  /* Capa oscura para accesibilidad */
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.55);
}

/* Contenido centrado */
.services-content {
  max-width: 600px;
  margin: auto;
  text-align: center;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

/* Animación suave */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Título */
.services-map-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

/* Intro */
.services-map-section p {
  font-size: 1.35rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Lista */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

/* Enlaces */
.services-list a {
  display: block;
  padding: 0.9rem 1rem;
  font-weight: bold;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

/* Hover accesible */
.services-list a:hover,
.services-list a:focus {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  outline: none;
}

/* --- RESPONSIVE DESKTOP --- */
@media (min-width: 768px) {
  .services-map-section {
    padding: 5rem 2rem;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-map-section h2 {
    font-size: 2.5rem;
  }
}